-
-
Notifications
You must be signed in to change notification settings - Fork 458
[PXCT-1073] Tutorial from library - Uno R4 Capacitor Tutorial #2559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Preview DeploymentWaiting for deployment to complete... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @pedromsousalima , I have left some observations for the tutorial 🙂 Please check them out, I think they should be worth looking into. With the observations applied, I think it should be ready for next step.
content/hardware/02.hero/boards/uno-r4-wifi/tutorials/touch/content.md
Outdated
Show resolved
Hide resolved
content/hardware/02.hero/boards/uno-r4-wifi/tutorials/touch/content.md
Outdated
Show resolved
Hide resolved
content/hardware/02.hero/boards/uno-r4-wifi/tutorials/touch/content.md
Outdated
Show resolved
Hide resolved
content/hardware/02.hero/boards/uno-r4-wifi/tutorials/touch/content.md
Outdated
Show resolved
Hide resolved
Capacitive sensing is a technology that detects changes in capacitance to determine the presence or absence of a conductive object, such as a human finger. This principle is widely used in touch-sensitive devices. The Arduino® Uno R4, both the [WiFi](https://store.arduino.cc/products/arduino-uno-r4-wifi) and [Minima](https://store.arduino.cc/products/arduino-uno-r4-minima) versions, come equipped with built-in capacitive sensing capabilities, making it easier to integrate touch inputs into your projects. | ||
|
||
 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here I think we should add:
Goals
Required Hardware and Software
To show directly what are the goals of the tutorial, as well as the hardware and software that would be used so the reader knows the requirements right at the beginning
Here's a simple example to get you started with capacitive sensing on the Uno R4. | ||
For this example we are connecting a single piece of any conductive material to the pin ```D0``` on the Board. | ||
|
||
 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be nice to move this to a separate and dedicated section, so the readers can assemble the hardware and understand how it works electrically. Then they can move to example section to upload the code and test it.
|
||
Capacitive sensing is a technology that detects changes in capacitance to determine the presence or absence of a conductive object, such as a human finger. This principle is widely used in touch-sensitive devices. The Arduino® Uno R4, both the [WiFi](https://store.arduino.cc/products/arduino-uno-r4-wifi) and [Minima](https://store.arduino.cc/products/arduino-uno-r4-minima) versions, come equipped with built-in capacitive sensing capabilities, making it easier to integrate touch inputs into your projects. | ||
|
||
 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we could add this as a duplicate after the example section, so it works as a nice visual addition of what to expect or how it would work. The image placement here is good because it shows the reader from the introduction what they are expecting to learn within the tutorial, so I think it would be nice to copy this line and add it next to the example section.
| D13 | 12 | 1 | (1 << 4) | | ||
| A1 (D15) | 21 | 2 | (1 << 5) | | ||
| A2 (D16) | 22 | 2 | (1 << 6) | | ||
| LOVE_BUTTON | 0 | 0 | (1 << 0) | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the lovebutton is a pin at bottom side of the minima right?
content/hardware/02.hero/boards/uno-r4-wifi/tutorials/touch/content.md
Outdated
Show resolved
Hide resolved
Co-authored-by: TaddyHC <[email protected]>
…ntent.md Co-authored-by: TaddyHC <[email protected]>
What This PR Changes
Contribution Guidelines